remove first row of dataframe

33

remove first row of dataframe -

df = df.iloc[1: , :]

pandas delete first row -

df = df.iloc[3:]

Comments

Submit
0 Comments